loop statement

英 [luːp ˈsteɪtmənt] 美 [luːp ˈsteɪtmənt]

网络  循环语句; 回圈叙述

计算机



双语例句

  1. They also facilitate migration to IDS of routines written in the procedural languages of other database servers that support GOTO and LOOP statement syntax.
    对于用支持GOTO和LOOP语句语法的其它数据库服务器上的过程语言编写的例程,SPL语言中的语句标签、GOTO和LOOP语句也可以为它们到IDS的迁移提供便利。
  2. The LOOP statement executes a statement block for an unspecified number of iterations.
    LOOP语句不限次数地执行一个语句块。
  3. A while loop within bash allows you to execute a statement a given number of times, or until a certain condition is met.
    bash中的while循环可以重复执行语句一定的次数,或者一直执行到满足某一条件为止。
  4. To avoid infinite iterations of LOOP statements, new EXIT and CONTINUE options to the IF statement are valid within LOOP statements.
    为了避免LOOP语句的无限次迭代,在LOOP语句中可以使用IF语句的新EXIT和CONTINUE选项。
  5. The while loop, as was the case with the if statement, supports an optional else clause containing a block of program statements executed when the expression is False.
    while循环与if语句一样,支持一个可选的else子句,其中包含一个当表达式计算为False时执行的程序语句块。
  6. If the condition evaluates to FALSE or NULL, the loop is bypassed, and control passes to the next statement.
    如果条件的求值结果为FALSE或NULL,那么将绕过循环,并且控制被传递给下一条语句。
  7. The getopts command returns true if an option is found, so a common option processing paradigm uses a while loop with a case statement as in this example.
    如果找到一个选项,则getopts命令返回true,因此常见的选项处理范例使用带case语句的while循环,本例中就是如此。
  8. Statement labels, GOTO, and LOOP statements in the SPL language
    SPL语言中的语句标签、GOTO和LOOP语句
  9. You actually know whether the number is prime or not, immediately after the end of the for loop, even though you don't use the determined value until the if statement.
    在for循环结束之后,就已经知道数字是否是素数,尽管在if语句之前并不使用判断结果。
  10. The GOTO label statement can unconditionally exit from a loop and transfer control to the executable statement or statement block that follows the specified statement label.
    GOTO标签语句可以无条件地退出循环,并将控制权转移到跟在指定的语句标签之后的可执行语句或语句块。
  11. The new support for statement labels and the GOTO and LOOP statements provide greater flexibility in iterating and in exiting from statement loops in SPL routines.
    对语句标签以及GOTO和LOOP语句的新支持为SPL例程中的迭代和退出语句循环提供了更大的灵活性。
  12. Next, we consider the infinite loop statement and conditionals.
    接下来,考虑无限循环语句和条件。
  13. LEAVE: Used to transfer control out of a loop or a compound statement
    LEAVE:将控制转移到循环之外或一个复合语句
  14. When the FETCH cursor statement fails and does not find another row to retrieve, the value of SQLSUCCESS is set to0 and the WHILE LOOP ends.
    当FETCH游标语句失败并且没有找到另一个要检索的行,SQLSUCCESS的值被设置为0并且WHILELOOP结束。
  15. The LOOP statement has no terminating condition clause.
    LOOP语句没有终止条件子句。
  16. However, inside the loop there is a break statement that will break out of the loop.
    然而,循环内部有一个break语句,可中止循环。
  17. Terminates the current loop, or if in conjunction with a label, terminates the associated statement.
    终止当前循环,或者,当与标签一起使用时,终止相关联的语句。
  18. The Boolean-expression is evaluated once at the beginning of the loop and again before each further iteration of the statement.
    在循环刚开始时,会计算一次“布尔表达式”的值。而对于后来每一次额外的循环,都会在开始前重新计算一次。
  19. It is very common to give the list a name instead of typing the list itself in to a loop statement.
    在循环中使用列表最普遍的做法是用一个列表名字代替键入列表本身。
  20. Reading and Using of Loop Structure Statement in Visual FoxPro
    VISUALFOXPRO中循环语句的解读及应用
  21. Loop Statement Synthesis Method in VHDL Language
    VHDL语言中循环语句的综合方法
  22. Using syntax of IMP, the operational semantics of repeat-until loop statement is given first, then the denotational semantics of repeat-until loop statement is deduced, and finally the equivalence of them is proved in detail.
    本文使用简单的命令式语言IMP的语法,首先给出了repeat-until循环语句的操作语义,然后详细推导出了其指称语义,并在此基础上详细证明了它们二者之间的语义等价性。
  23. To realize the parameterized module, we build template analysis process at first, then arrange corresponding log document, introduce parameterized variable, and apply program flow control command of APDL such as judgement statement and loop statement.
    先建立模板分析过程,然后整理对应的log文件,引入参数化变量,运用APDL的判断和循环等流程控制命令,实现电梯分析系统的参数化模块。
  24. The Engineering Implement of Loop Distribution& The Method of the Dynamic Rearranging Statement Ordering
    循环分布的工程实现&语句动态调序法
  25. Idle Loop and Do Events Statement
    闲置循环与DoEvents语句
  26. The control crossing principle of IF statement and WHILE loop statement were given out, which produced control blocks of multi-level exit and entry, so code control flow became more complicated.
    给出if语句和while循环语句控制流交叉原理,产生多入口多出口控制块,使代码控制流复杂化。